CGIFILE

CGIFILE class is a data structure that describes the way a file is reprensented from the web server. (apache)

Note: currently a glorifed Struct, a class with no methods as that future plans are to expand this class.

class CGIFILE {
string filename;
string content_type;
string content;
}

Meta